home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PGetPageOptions.cpp -------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Thu, Oct 12, 1995 @ 10:11 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PGetPageOptions.html
- *-------------------------------------------------------------------------
- */
-
- #include "PQuery.h"
- #include "PGetPageOptions.h"
-
- PGetPageOptions::PGetPageOptions()
- {
- short temp[2];
-
- PQuery query(pm_getpageoptions, (char *) temp, 4);
- bDoubleSided = temp[0] ? true : false;
- bFacingPages = temp[1] ? true : false;
- }
-
- // end of PGetPageOptions.cpp
-